home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
os2tools
/
compupd
/
makefile
< prev
next >
Wrap
Makefile
|
1989-05-16
|
455b
|
15 lines
#
# Makefile for COMPARE and UPDATE.
# (Note that this makefile may not work with Microsoft's MAKE)
# EXE files are targeted for OS/2 and bound for use under MSDOS
#
all: compare.exe update.exe
compare.exe: compare.c
cl -AC -Ox -G0 -FPi -Lp compare.c compare.def
bind compare.exe \os2\doscalls.lib
del compare.obj
update.exe: update.c
cl -AC -Ox -G0 -FPi -Lp update.c
bind update.exe \os2\doscalls.lib
del update.obj